home *** CD-ROM | disk | FTP | other *** search
- on(keyPress "s"){
- js = 10;
- while(js >= 0)
- {
- if(a[manx][js] == 1 || a[manx][js] == 2 || a[manx][js] == 3 || a[manx][js] == 4)
- {
- kk = js;
- break;
- }
- js--;
- }
- ss = kk * 8 + manx;
- if((mancolor == 0 || mancolor == a[manx][kk]) && (a[manx][kk] == 1 || a[manx][kk] == 2 || a[manx][kk] == 3 || a[manx][kk] == 4))
- {
- man.gotoandplay("down");
- sound.gotoandplay("down");
- this["gg" add ss].gotoandplay("down");
- mancolor = a[manx][kk];
- mannumber += 1;
- a[manx][kk] = 0;
- aa = 1;
- while(aa < 12 && kk - aa >= 0)
- {
- if(a[manx][kk - aa] != mancolor)
- {
- break;
- }
- mannumber += 1;
- ss2 = (kk - aa) * 8 + manx;
- this["gg" add ss2].gotoandplay("down");
- a[manx][kk - aa] = 0;
- aa++;
- }
- }
- }
-